home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of Video
/
World of Video.iso
/
gfxprograms
/
3dprograms
/
rayshade-4.0
/
fixes
/
fix024
/
install-patches
Wrap
Text File
|
1995-02-13
|
686b
|
22 lines
#!/bin/sh
# installs rayshade.4.0.6 patches for raytracing fractals
# philippe@cs.kuleuven.ac.be - 12 oct 1993
cd libshade
files="lex.l shade.c viewing.c viewing.h yacc.y"
for file in $files; do patch $file $file.diff; done
cd ../libray/libcommon
files="ray.h transform.c transform.h vecmath.c vector.h"
for file in $files; do patch $file $file.diff; done
cd ../libobj
files="Makefile.SH bounds.c bounds.h"
for file in $files; do patch $file $file.diff; done
cd ../..
echo "The patches for ray-tracing fractals with rayshade.4.0.6 have been applied"
echo "and the new files added. If you already ran the Configure script, run"
echo "Reconfigure, if you didn't, run Configure now."